f5d957445ffd86edbd5509932c18a58760bcf8ee,jps-plugin/src/org/jetbrains/jet/jps/build/JpsJsModuleUtils.java,JpsJsModuleUtils,getLibraryFiles,#ModuleBuildTarget#List#,48
Before Change
Set<JpsLibrary> libraries = JpsUtils.getAllDependencies(target).getLibraries();
for (JpsLibrary library : libraries) {
for (JpsLibraryRoot root : library.getRoots(JpsOrderRootType.COMPILED)) {
String path = JpsPathUtil.urlToPath(root.getUrl());
// TODO: Do we need to add to dependency all libraries?
if (LibraryUtils.isJsRuntimeLibrary(new File(path))) {
result.add(path);
}
}
After Change
Set<JpsLibrary> libraries = JpsUtils.getAllDependencies(target).getLibraries();
for (JpsLibrary library : libraries) {
for (JpsLibraryRoot root : library.getRoots(JpsOrderRootType.COMPILED)) {
result.add(JpsPathUtil.urlToPath(root.getUrl()));
}
}
}